home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
os2
/
dialip10.zip
/
POLLPOP.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-06-15
|
457b
|
19 lines
/* PollPOP.cmd by Christoph Lechleitner */
call RxFuncAdd 'SysSleep', 'RexxUtil', 'SysSleep'
say ' '
say ' POP-Poller for jk.uni-linz.ac.at'
interval = 120
say ' I will poll it in intervals of ' interval ' seconds.'
do forever
say ' '
say ' Getting mail on' date() 'at' time() '.'
'@call getpop.cmd <popserver> <userid> <password> <filemask>'
/* replace the <variables> with your data */
say ' '
call SysSleep interval
end